home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
Programming
/
c-runtime
/
tests
/
SubClass3.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-08-18
|
344 b
|
32 lines
/* -*-objc-*- */
/*
$Header$
$Author: dglattin $
$Date$
$Log$
*/
#ifndef __SUBCLASS3_H
#define __SUBCLASS3_H
#include <SubClass2.h>
@interface SubClass3 : SubClass2 {
char smart[ 256 ];
}
+initialize;
+ new;
-print:( const char* )aMsg;
- ( int )additionalMethod;
- storeOn:( int )aFd;
- readFrom:( int )aFd;
@end
#endif